home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / LocaleElements_fr_LU.java < prev    next >
Text File  |  1998-09-22  |  959b  |  36 lines

  1. /*
  2.  * @(#)LocaleElements_fr_LU.java    1.1 98/07/07
  3.  *
  4.  * (C) Copyright IBM Corp. 1998 - All Rights Reserved
  5.  */
  6.  
  7. /**
  8.  * Table of Java supplied standard locale elements
  9.  * Created 19 May 1998
  10.  */
  11.  
  12. // WARNING : the format of this file will change in the future!
  13.  
  14. package java.text.resources;
  15.  
  16. import java.util.ListResourceBundle;
  17.  
  18. public class LocaleElements_fr_LU extends ListResourceBundle {
  19.     /**
  20.      * Overrides ListResourceBundle
  21.      */
  22.     public Object[][] getContents() {
  23.         return new Object[][] {
  24.             { "LocaleString", "fr_LU" }, // locale id based on iso codes
  25.             { "ShortCountry", "LUX" }, // iso-3 abbrev country name
  26.             { "CurrencyElements",
  27.                 new String[] {
  28.                     "F", // local currency symbol
  29.                     "LUF", // intl currency symbol
  30.                     "," // monetary decimal separator
  31.                 }
  32.             }
  33.         };
  34.     }
  35. }
  36.